Make usage of vec! macro consistent
authoriirelu <totallymyrealemail@hush.ai>
Mon, 23 Nov 2015 16:56:10 +0000 (16:56 +0000)
committeriirelu <totallymyrealemail@hush.ai>
Mon, 23 Nov 2015 16:56:10 +0000 (16:56 +0000)
commitab1cb51f54a9d3743ccfa3d3461dbaeadc2a7d04
tree5fa8a3e4f56d5af0dec0e390c335da805c2fb479
parent4317d9875ac87828eeb51af7e1d7affb3c213926
Make usage of vec! macro consistent

Previously it was a mix of vec!() and vec![], as both work thanks to the
implementation of macros in Rust (even vec!{} would work), this makes
them all use the generally-accepted vec![] standard, which imitates the
syntax used for slices and is considered to make things clearer.
src/cargo/core/manifest.rs
src/cargo/core/registry.rs
src/cargo/util/toml.rs
tests/resolve.rs
tests/support/mod.rs